home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PsL Monthly 1993 December
/
PSL Monthly Shareware CD-ROM (December 1993).iso
/
prgmming
/
dos
/
c
/
tcclib.exe
/
ACCEPT.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1989-07-29
|
235 b
|
12 lines
int GetLine( char *s, int len, int start );
void Say( char *s );
#include <conio.h>
void Accept( int x, int y, char *Prompt, char *Buffer, int Length )
{
gotoxy( x, y );
Say( Prompt );
GetLine( Buffer, Length, 0 );
}